home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / APW.SC / SC01Shell / C.Shell / full.Build < prev    next >
Encoding:
Text File  |  1990-06-20  |  655 b   |  31 lines  |  [TEXT/pdos]

  1. *
  2. *   This exec file does a complete build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Full.Build
  6. *   Target:       Shell
  7. *   Sources:      Shell.c
  8. *                 ../Rez.Shell/Shell.rez
  9. *   Link Script:  Shell.link
  10. *
  11. *   Copyright Apple Computer, Inc. 1988-1990
  12. *   All rights reserved.
  13. *
  14.  
  15. echo "Compiling Shell.c"
  16. compile Shell.c keep=Shell
  17.  
  18. echo "Compiling Shell.rez"
  19. copy -c ../rez.shell/shell.rez shell.rez
  20. compile ../Rez.Shell/Shell.rez keep=Shell.rfork
  21. delete shell.rez
  22.  
  23. echo "Linking..."
  24. linkiigs <Shell.link
  25.  
  26. echo "Duplicating data and resource forks..."
  27. duplicate -d Shell.dfork Shell
  28. duplicate -r Shell.rfork Shell
  29.  
  30. echo "Done!"
  31.